home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 18 / CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso / CUCD / Online / CNetDemo / cnet / sdk / include / winscreen.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-04  |  593 b   |  29 lines

  1.  
  2. struct WinStruct 
  3.     {
  4.     struct Window *Window;
  5.     struct Gadget *GList;
  6.     struct Menu *Menus;
  7.     struct IntuiText *WinText;
  8.     struct Requester *BlockRequester;
  9.     LONG NW_LeftEdge;
  10.     LONG NW_TopEdge;
  11.     LONG NW_Width;
  12.     LONG NW_Height;
  13.     LONG NW_MinWidth;
  14.     LONG NW_MinHeight;
  15.     LONG NW_MaxWidth;
  16.     LONG NW_MaxHeight;
  17.     WORD NW_TotalGads;
  18.     LONG BlockCnt;
  19.     ULONG WS_Flags;
  20.     BOOL NW_Reset;
  21.     };
  22.  
  23. struct WindowFont
  24.     {
  25.     struct TextFont *wf_CurrentFont;        // pointer to the currently opened window font, or NULL if none
  26.     struct TextAttr wf_TextAttr;            // font spec
  27.     BOOL Changed;                                // true if changed by user
  28.     };
  29.